home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / adalex.h < prev    next >
C/C++ Source or Header  |  1996-01-30  |  601b  |  21 lines

  1. /*
  2.  * Copyright (C) 1985-1992  New York University
  3.  * 
  4.  * This file is part of the Ada/Ed-C system.  See the Ada/Ed README file for
  5.  * warranty (none) and distribution info and also the GNU General Public
  6.  * License for more details.
  7.  
  8.  */
  9. #include "ada.h"
  10.  
  11. #define NAMEMAPSIZE 1021    /* temporary values */
  12. /* define with suffix L as long constant for PC */
  13. #ifdef IBM_PC
  14. #define NAMEMAPSIZE_L 1021L    /* temporary values */
  15. #endif
  16. #define NAMELISTSIZE 324    /* temporary values */
  17.  
  18. #define ISDELIMITER(c) strchr("()&*:-=/+;><,.|![]",c)
  19.  
  20. #define IS_STRING_CHAR(x)  ( x != '"' && ( isprint(x) || x == ' ') )
  21.